home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / NDK / NDK_1.3 / Read-Me1.3 / Autodocs1.3 / mathieeedoubtrans.doc < prev    next >
Encoding:
Text File  |  1988-07-26  |  7.7 KB  |  453 lines

  1.  
  2.  
  3. TABLE OF CONTENTS
  4.  
  5. mathieeedoubtrans.library/IEEEDPAcos
  6. mathieeedoubtrans.library/IEEEDPAsin
  7. mathieeedoubtrans.library/IEEEDPAtan
  8. mathieeedoubtrans.library/IEEEDPCos
  9. mathieeedoubtrans.library/IEEEDPCosh
  10. mathieeedoubtrans.library/IEEEDPExp
  11. mathieeedoubtrans.library/IEEEDPFieee
  12. mathieeedoubtrans.library/IEEEDPLog
  13. mathieeedoubtrans.library/IEEEDPLog10
  14. mathieeedoubtrans.library/IEEEDPPow
  15. mathieeedoubtrans.library/IEEEDPSin
  16. mathieeedoubtrans.library/IEEEDPSincos
  17. mathieeedoubtrans.library/IEEEDPSinh
  18. mathieeedoubtrans.library/IEEEDPSqrt
  19. mathieeedoubtrans.library/IEEEDPTan
  20. mathieeedoubtrans.library/IEEEDPTanh
  21. mathieeedoubtrans.library/IEEEDPTieee
  22.  
  23.  
  24. mathieeedoubtrans.library/IEEEDPAcos
  25.  
  26.    NAME
  27.     IEEEDPAcos -- compute the arc cosine of a number
  28.  
  29.    SYNOPSIS
  30.       x   = IEEEDPAcos(  y  );
  31.     d0/d1               d0/d1
  32.  
  33.     double    x,y;
  34.  
  35.    FUNCTION
  36.     Compute arc cosine of y in IEEE double precision
  37.  
  38.    INPUTS
  39.     y - IEEE double precision floating point value
  40.  
  41.    RESULT
  42.     x - IEEE double precision floating point value
  43.  
  44.    BUGS
  45.  
  46.    SEE ALSO
  47.     IEEEDPCos(), IEEEDPAtan(), IEEEDPAsin()
  48.  
  49. mathieeedoubtrans.library/IEEEDPAsin
  50.  
  51.    NAME
  52.     IEEEDPAsin -- compute the arcsine of a number
  53.  
  54.    SYNOPSIS
  55.       x   = IEEEDPAsin(  y  );
  56.     d0/d1               d0/d1
  57.  
  58.     double    x,y;
  59.  
  60.    FUNCTION
  61.     Compute the arc sine of y in IEEE double precision
  62.  
  63.    INPUTS
  64.     y - IEEE double precision floating point value
  65.  
  66.    RESULT
  67.     x - IEEE double precision floating point value
  68.  
  69.    BUGS
  70.  
  71.    SEE ALSO
  72.     IEEEDPSin(), IEEEDPAtan(), IEEEDPAcos()
  73.  
  74. mathieeedoubtrans.library/IEEEDPAtan
  75.  
  76.    NAME
  77.     IEEEDPAtan -- compute the arctangent of a floating point number
  78.  
  79.    SYNOPSIS
  80.       x   = IEEEDPAtan(  y  );
  81.     d0/d1           d0/d1
  82.  
  83.     double    x,y;
  84.  
  85.    FUNCTION
  86.     Compute arctangent of y in IEEE double precision
  87.  
  88.    INPUTS
  89.     y - IEEE double precision floating point value
  90.  
  91.    RESULT
  92.     x - IEEE double precision floating point value
  93.  
  94.    BUGS
  95.  
  96.    SEE ALSO
  97.     IEEEDPTan(), IEEEDPAsin(), IEEEDPACos()
  98.  
  99. mathieeedoubtrans.library/IEEEDPCos
  100.  
  101.    NAME
  102.     IEEEDPCos -- compute the cosine of a floating point number 
  103.  
  104.    SYNOPSIS
  105.       x   = IEEEDPCos(  y  );
  106.     d0/d1           d0/d1
  107.  
  108.     double    x,y;
  109.  
  110.    FUNCTION
  111.     Compute cosine of y in IEEE double precision
  112.  
  113.    INPUTS
  114.     y - IEEE double precision floating point value
  115.  
  116.    RESULT
  117.     x - IEEE double precision floating point value
  118.  
  119.    BUGS
  120.  
  121.    SEE ALSO
  122.     IEEEDPAcos(), IEEEDPSin(), IEEEDPTan()
  123.  
  124. mathieeedoubtrans.library/IEEEDPCosh
  125.  
  126.    NAME
  127.     IEEEDPCosh -- compute the hyperbolic cosine of a floating point number 
  128.  
  129.    SYNOPSIS
  130.       x   = IEEEDPCosh(  y  );
  131.     d0/d1           d0/d1
  132.  
  133.     double    x,y;
  134.  
  135.    FUNCTION
  136.     Compute hyperbolic cosine of y in IEEE double precision
  137.  
  138.    INPUTS
  139.     y - IEEE double precision floating point value
  140.  
  141.    RESULT
  142.     x - IEEE double precision floating point value
  143.  
  144.    BUGS
  145.  
  146.    SEE ALSO
  147.     IEEEDPSinh(), IEEEDPTanh()
  148.  
  149. mathieeedoubtrans.library/IEEEDPExp
  150.  
  151.    NAME
  152.     IEEEDPExp -- compute the exponential of e
  153.  
  154.    SYNOPSIS
  155.       x   = IEEEDPExp(  y  );
  156.     d0/d1              d0/d1
  157.  
  158.     double    x,y;
  159.  
  160.    FUNCTION
  161.     Compute e^y in IEEE double precision
  162.  
  163.    INPUTS
  164.     y - IEEE double precision floating point value
  165.  
  166.    RESULT
  167.     x - IEEE double precision floating point value
  168.  
  169.    BUGS
  170.  
  171.    SEE ALSO
  172.     IEEEDPLog()
  173.  
  174. mathieeedoubtrans.library/IEEEDPFieee
  175.  
  176.    NAME
  177.     IEEEDPFieee -- convert IEEE single to IEEE double
  178.  
  179.    SYNOPSIS
  180.       x   = IEEEDPFieee(  y  );
  181.     d0/d1                  d0
  182.  
  183.     float    y;
  184.     double  x;
  185.  
  186.    FUNCTION
  187.     Convert IEEE single precision number to IEEE double precision.
  188.  
  189.    INPUTS
  190.     y - IEEE single precision floating point value
  191.  
  192.    RESULT
  193.     x - IEEE double precision floating point value
  194.  
  195.    BUGS
  196.  
  197.    SEE ALSO
  198.     IEEEDPTieee()
  199.  
  200. mathieeedoubtrans.library/IEEEDPLog
  201.  
  202.    NAME
  203.     IEEEDPLog -- compute the natural logarithm of a floating point number
  204.  
  205.    SYNOPSIS
  206.       x   = IEEEDPLog(  y  );
  207.     d0/d1              d0/d1
  208.  
  209.     double    x,y;
  210.  
  211.    FUNCTION
  212.     Compute ln(y) in IEEE double precision
  213.  
  214.    INPUTS
  215.     y - IEEE double precision floating point value
  216.  
  217.    RESULT
  218.     x - IEEE double precision floating point value
  219.  
  220.    BUGS
  221.  
  222.    SEE ALSO
  223.     IEEEDPExp()
  224.  
  225. mathieeedoubtrans.library/IEEEDPLog10
  226.  
  227.    NAME
  228.     IEEEDPLog10 -- compute logarithm base 10 of a number
  229.  
  230.    SYNOPSIS
  231.       x   = IEEEDPLog10(  y  );
  232.     d0/d1                d0/d1
  233.  
  234.     double    x,y;
  235.  
  236.    FUNCTION
  237.     Compute the logarithm base 10 of y in IEEE double precision
  238.  
  239.    INPUTS
  240.     y - IEEE double precision floating point value
  241.  
  242.    RESULT
  243.     x - IEEE double precision floating point value
  244.  
  245.    BUGS
  246.  
  247.    SEE ALSO
  248.     IEEEDPLog()
  249.  
  250. mathieeedoubtrans.library/IEEEDPPow
  251.  
  252.    NAME
  253.     IEEEDPPow -- raise a number to another number power
  254.  
  255.    SYNOPSIS
  256.       z   = IEEEDPPow(  x  ,  y  );
  257.     d0/d1              d2/d3 d0/d1
  258.  
  259.     double    x,y,z;
  260.  
  261.    FUNCTION
  262.     Compute y^x in IEEE double precision
  263.  
  264.    INPUTS
  265.     x - IEEE double precision floating point value
  266.     y - IEEE double precision floating point value
  267.  
  268.    RESULT
  269.     z - IEEE double precision floating point value
  270.  
  271.    BUGS
  272.  
  273.    SEE ALSO
  274.  
  275. mathieeedoubtrans.library/IEEEDPSin
  276.  
  277.    NAME
  278.     IEEEDPSin -- compute the sine of a floating point number
  279.  
  280.    SYNOPSIS
  281.       x   = IEEEDPSin(  y  );
  282.     d0/d1          d0/d1
  283.  
  284.     double    x,y;
  285.  
  286.    FUNCTION
  287.     Compute sine of y in IEEE double precision
  288.  
  289.    INPUTS
  290.     y - IEEE double precision floating point value
  291.  
  292.    RESULT
  293.     x - IEEE double precision floating point value
  294.  
  295.    BUGS
  296.  
  297.    SEE ALSO
  298.     IEEEDPAsin(), IEEEDPTan(), IEEEDPCos()
  299.  
  300. mathieeedoubtrans.library/IEEEDPSincos
  301.  
  302.    NAME
  303.     IEEEDPSincos -- compute the arc tangent of a floating point number 
  304.  
  305.    SYNOPSIS
  306.       x   = IEEEDPSincos( z ,  y  );
  307.     d0/d1             a0  d0/d1
  308.  
  309.     double    x,y,*z;
  310.  
  311.    FUNCTION
  312.     Compute sin and cosine of y in IEEE double precision.
  313.     Store the cosine in *z. Return the sine of y.
  314.  
  315.    INPUTS
  316.     y - IEEE double precision floating point value
  317.     z - pointer to IEEE double precision floating point number
  318.  
  319.    RESULT
  320.     x - IEEE double precision floating point value
  321.  
  322.    BUGS
  323.  
  324.    SEE ALSO
  325.     IEEEDPSin(), IEEEDPCos()
  326.  
  327. mathieeedoubtrans.library/IEEEDPSinh
  328.  
  329.    NAME
  330.     IEEEDPSinh -- compute the hyperbolic sine of a floating point number 
  331.  
  332.    SYNOPSIS
  333.       x   = IEEEDPSinh(  y  );
  334.     d0/d1           d0/d1
  335.  
  336.     double    x,y;
  337.  
  338.    FUNCTION
  339.     Compute hyperbolic sine of y in IEEE double precision
  340.  
  341.    INPUTS
  342.     y - IEEE double precision floating point value
  343.  
  344.    RESULT
  345.     x - IEEE double precision floating point value
  346.  
  347.    BUGS
  348.  
  349.    SEE ALSO
  350.     IEEEDPCosh, IEEEDPTanh
  351.  
  352. mathieeedoubtrans.library/IEEEDPSqrt
  353.  
  354.    NAME
  355.     IEEEDPSqrt -- compute the square root of a number
  356.  
  357.    SYNOPSIS
  358.       x   = IEEEDPSqrt(  y  );
  359.     d0/d1                d0/d1
  360.  
  361.     double    x,y;
  362.  
  363.    FUNCTION
  364.     Compute square root of y in IEEE double precision
  365.  
  366.    INPUTS
  367.     y - IEEE double precision floating point value
  368.  
  369.    RESULT
  370.     x - IEEE double precision floating point value
  371.  
  372.    BUGS
  373.  
  374.    SEE ALSO
  375.  
  376. mathieeedoubtrans.library/IEEEDPTan
  377.  
  378.    NAME
  379.     IEEEDPTan -- compute the tangent of a floating point number 
  380.  
  381.    SYNOPSIS
  382.       x   = IEEEDPTan(  y  );
  383.     d0/d1          d0/d1
  384.  
  385.     double    x,y;
  386.  
  387.    FUNCTION
  388.     Compute tangent of y in IEEE double precision
  389.  
  390.    INPUTS
  391.     y - IEEE double precision floating point value
  392.  
  393.    RESULT
  394.     x - IEEE double precision floating point value
  395.  
  396.    BUGS
  397.  
  398.    SEE ALSO
  399.     IEEEDPAtan(), IEEEDPSin(), IEEEDPCos()
  400.  
  401. mathieeedoubtrans.library/IEEEDPTanh
  402.  
  403.    NAME
  404.     IEEEDPTanh -- compute the hyperbolic tangent of a floating point number 
  405.  
  406.    SYNOPSIS
  407.       x   = IEEEDPTanh(  y  );
  408.     d0/d1           d0/d1
  409.  
  410.     double    x,y;
  411.  
  412.    FUNCTION
  413.     Compute hyperbolic tangent of y in IEEE double precision
  414.  
  415.    INPUTS
  416.     y - IEEE double precision floating point value
  417.  
  418.    RESULT
  419.     x - IEEE double precision floating point value
  420.  
  421.    BUGS
  422.  
  423.    SEE ALSO
  424.     IEEEDPSinh(), IEEEDPCosh()
  425.  
  426. mathieeedoubtrans.library/IEEEDPTieee
  427.  
  428.    NAME
  429.     IEEEDPTieee -- convert IEEE double to IEEE single
  430.  
  431.    SYNOPSIS
  432.       x   = IEEEDPTieee(  y  );
  433.      d0                d0/d1
  434.  
  435.     double    y;
  436.     float   x;
  437.  
  438.    FUNCTION
  439.     Convert IEEE double precision number to IEEE single precision.
  440.  
  441.    INPUTS
  442.     y - IEEE double precision floating point value
  443.  
  444.    RESULT
  445.     x - IEEE single precision floating point value
  446.  
  447.    BUGS
  448.  
  449.    SEE ALSO
  450.     IEEEDPFieee()
  451.  
  452.  
  453.